home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / GETCUR.CC < prev    next >
Text File  |  1993-04-04  |  429b  |  17 lines

  1. #include <dos.h>
  2. get_cur(int *row, int *col)
  3. /* return the current cursor location into row,col.
  4.    If the cursor is hidden return value will be 1 else 0 will be returned.    
  5. */
  6. {
  7.         union REGS inregs;
  8.         inregs.h.bh=0; inregs.h.ah=3;
  9.         int86(0x10,&inregs,&inregs);
  10.         *row=inregs.h.dh;
  11.         *col=inregs.h.dl;
  12.         if(inregs.h.ch & 0x20)
  13.             return(1);
  14.         else
  15.             return(0);
  16. }
  17.